/* Brand fonts, self-hosted as web fonts.
   URLs are bare logical names (Modum.woff2, not ../fonts/Modum.woff2): the fonts
   dir is its own Propshaft load-path root, so that's the resolvable logical path
   Propshaft rewrites to a digested URL. The previous "../fonts/…" paths 404'd,
   which made these render only on machines that happened to have Avenir/Modum
   installed as system fonts. */
@font-face {
  font-family: "Modum";
  src: url("/assets/Modum-66ffb595.woff2") format("woff2"),
       url("/assets/Modum-5b817234.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Avenir";
  src: url("/assets/Avenir-39c16616.woff2") format("woff2"),
       url("/assets/Avenir-bd7ffb87.ttf") format("truetype");
  font-weight: normal;
  font-display: swap;
}

/* Use these (not Tailwind's font-[Avenir]) so there's always a sane fallback if
   the web font fails to load. */
.font-brand {
  font-family: "Avenir", ui-sans-serif, system-ui, sans-serif;
}
.font-wordmark {
  font-family: "Modum", ui-sans-serif, system-ui, sans-serif;
}
