/**
 * The faces the auto-edit lets a user choose between.
 *
 * Local TTFs, not a webfont host: the headless render has no network by the time it
 * paints, and a missing face there does not fail — it silently falls back to Helvetica
 * and the export quietly disagrees with the preview.
 *
 * Anton and Bebas Neue come from anton.css and Good Vibes Pro from good-vibes-pro.css;
 * this file adds the two that were only ever declared inline in one-off compositions.
 */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: local("Poppins Regular"), url("Poppins-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: block;
  src: local("Poppins Bold"), url("Poppins-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "Instrument Serif";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: local("Instrument Serif"), url("InstrumentSerif-Regular.ttf") format("truetype");
}
