/* ============================================================
   Monarch Herbs — self-hosted brand fonts (the one @font-face home)
   Variable woff2 (latin subset) served same-origin from assets/fonts/,
   replacing the Google Fonts CDN. Loaded by every page BEFORE styles.css
   (standalone pages — 404, preview/* — link it too). The three files are
   preloaded in the chrome pages' heads so text renders in the real faces
   at first paint — the font swap was measurably shifting .page-hero on
   every navigation. The *-fb faces are metric-tuned system fallbacks so
   any worst-case pre-font frame occupies almost the same space.
   ============================================================ */
@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url(../assets/fonts/fraunces-var.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 400 800;
  font-stretch: 100%;
  font-display: swap;
  src: url(../assets/fonts/nunito-sans-var.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Caveat";
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  src: url(../assets/fonts/caveat-var.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* Metric-matched fallbacks — sized so fallback text wraps ≈ like the real face */
@font-face { font-family: "Fraunces-fb"; src: local("Georgia"); size-adjust: 104%; ascent-override: 96%; descent-override: 24%; }
@font-face { font-family: "NunitoSans-fb"; src: local("Segoe UI"), local("Arial"); size-adjust: 101%; ascent-override: 100%; descent-override: 34%; }
@font-face { font-family: "Caveat-fb"; src: local("Segoe Script"), local("Comic Sans MS"); size-adjust: 88%; ascent-override: 106%; descent-override: 30%; }
