/**
 * Self-hosted webfonts — HANDOFF.md §2.
 *
 * No Google Fonts CDN. Every file below lives in assets/fonts/ and is served
 * from the same origin as the page.
 *
 * Weights shipped: Poppins 700/800 (headings/display), Inter 500/600/700
 * (body/UI), Sora 600 (uppercase eyebrows/labels), Noto Sans Devanagari
 * 500/600 (the Nepali tagline + any other Devanagari string, as the fallback
 * named in --rn-font-label).
 *
 * Inter, Sora and Noto Sans Devanagari ship only their `latin`
 * (Sora/Inter) or `devanagari` (Noto) Unicode-range subset — the site is
 * English + occasional Nepali only, so the cyrillic/greek/vietnamese
 * subsets Google normally splits out would be dead weight. Poppins was
 * converted locally from the two static TTFs bundled in _ds/…/fonts/
 * (Poppins-Bold.ttf, Poppins-ExtraBold.ttf) — those were the only two
 * weights this theme actually uses, so the rest of that TTF set was left
 * unconverted.
 *
 * Inter and Noto Sans Devanagari below point at ONE variable-font file
 * declared under multiple `font-weight` values (500/600/700 for Inter;
 * 500/600 for Noto) — this is exactly how Google Fonts' own CSS serves
 * them today. A variable font honours the requested `font-weight` via its
 * own `wght` axis regardless of the discrete weight named in whichever
 * `@font-face` rule loaded it, so this renders correctly and costs one
 * HTTP request instead of three.
 */

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../../assets/fonts/Poppins-Bold.woff2') format('woff2');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../../assets/fonts/Poppins-ExtraBold.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../../assets/fonts/Inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+2000-206F, U+2122, U+2212;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../../assets/fonts/Inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+2000-206F, U+2122, U+2212;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../../assets/fonts/Inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+2000-206F, U+2122, U+2212;
}

@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../../assets/fonts/Sora-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+2000-206F, U+2122, U+2212;
}

@font-face {
  font-family: 'Noto Sans Devanagari';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../../assets/fonts/NotoSansDevanagari-devanagari.woff2') format('woff2');
  unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF;
}

@font-face {
  font-family: 'Noto Sans Devanagari';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../../assets/fonts/NotoSansDevanagari-devanagari.woff2') format('woff2');
  unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF;
}
