/* ==========================================================================
   SAATVIK HERBS — WEBFONTS (self-hosted)

   Why these are served from our own domain rather than fonts.googleapis.com:
   this rebuild exists partly because the old site's dependence on external
   asset hosts became a real, money-costing problem. A Google Fonts link is
   two extra DNS lookups and two TLS handshakes to third-party hosts, on the
   critical path, before a single glyph can paint — on a mid-range Indian
   mobile connection that is comfortably half a second. Served from here they
   ride the connection the browser has already opened, and mod_headers caches
   them for a year.

   Four files, 77KB total, all `latin` subsets:
     Instrument Serif  400 + 400 italic  — display type only
     Instrument Sans   400 + 600         — everything else

   Weight 500 is deliberately not shipped. It was used in exactly one place
   (the desktop nav), which now uses 600 — not worth a fifth request.

   `font-display: swap` is correct here rather than `optional`: the display
   face carries most of the page's character, and a late swap is better than
   a visitor who never sees the real typography at all. The fallback stacks in
   tokens.css are metric-adjacent enough that the reflow is small.

   NOTE ON ₹: neither Instrument face includes U+20B9 in any subset, so the
   rupee sign always renders from the system stack (Segoe UI, Roboto, SF)
   while the digits beside it render in Instrument. This is expected, not a
   loading bug. Same for ★ and ✦.

   If Hindi or Marathi copy is ever added, add the Devanagari subsets here as
   extra @font-face blocks with their own unicode-range — the browser will
   only fetch them for pages that actually contain those characters.
   ========================================================================== */

/* Google's standard `latin` subset range. Declaring it means the browser can
   skip the download entirely on a page with no Latin text — and, more
   usefully here, will not download the file to render a lone ₹ or ★. */
@font-face {
  font-family: 'Instrument Serif';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/instrument-serif-400.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: 'Instrument Serif';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/instrument-serif-400-italic.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: 'Instrument Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/instrument-sans-400.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: 'Instrument Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/instrument-sans-600.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;
}
