/* =====================================================================
   comfort.fonts.css - self-hosted Comfort typefaces (Comfort Remediation)
   =====================================================================
   Newsreader (serif display, opsz+wght), Geist (sans), Geist Mono (money) -- all OFL,
   self-hosted variable woff2 under /assets/fonts. No external font host,
   no @import chain (prod-legal). font-display:swap so text paints in the
   fallback immediately, then upgrades. Family names match the token stacks
   in comfort.tokens.css (--k-font-serif/-sans/-mono).
   ===================================================================== */
@font-face {
  font-family: "Newsreader";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("/assets/fonts/Newsreader-Variable.woff2") format("woff2");
}
@font-face {
  font-family: "Geist";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/Geist-Variable.woff2") format("woff2");
}
@font-face {
  font-family: "Geist Mono";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/GeistMono-Variable.woff2") format("woff2");
}
