/* Self-hosted webfonts — replaces the render-blocking fonts.googleapis.com stylesheet.
 *
 * Why: that <link> cost two extra third-party origins (googleapis for 19.4KB of CSS, then
 * gstatic for the files themselves), both on the critical path, and it shipped 53 font files
 * across 7 unicode subsets — cyrillic, greek and vietnamese included — to an English-only
 * storefront. These are the latin subsets of the three families the site actually uses,
 * served from our own domain with the same immutable caching as every other static asset.
 *
 * Only the weights in use are declared. The previous request asked for nine faces; the CSS
 * uses six (Inter 500/600/700 on the product sticky bar, Playfair 700/800 for headings,
 * Great Vibes 400 for the author signature). Inter 400/800 and Playfair 600 were never used.
 * Inter and Playfair are variable fonts, so one file covers their whole weight range.
 *
 * Licensing: all three are SIL Open Font License 1.1, which permits redistribution — see
 * static/fonts/OFL.txt. Do NOT add a font here without checking its licence allows self-hosting.
 *
 * font-display: swap matches the previous `&display=swap`: text paints immediately in the
 * fallback (Georgia/system sans) and reflows when the webfont lands, rather than staying
 * invisible. Georgia carries most of the body copy, so the swap is barely visible.
 * unicode-range values are Google's own, so subset coverage is unchanged.
 */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/static/fonts/inter-var-latin.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: 'Playfair Display';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('/static/fonts/playfair-var-latin.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: 'Great Vibes';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/static/fonts/great-vibes-400-latin.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;
}
