/*
 * Self-hosted Outfit (Google Fonts, SIL Open Font License 1.1).
 *
 * Two rules, not eight.
 *
 * This file previously declared four weights (300/400/500/700) x two subsets,
 * each pointing at its own URL. Those eight files were four identical copies of
 * two files — verifiable with `md5sum assets/fonts/*.woff2`, which returns just
 * two distinct hashes. Outfit ships from Google Fonts as a VARIABLE font with a
 * `wght` axis spanning 100-900, so a single file already contains every weight;
 * the per-weight file names were a fiction, and every one of the eight URLs was
 * a separate entry in the browser cache.
 *
 * The cost was real. A page using 300, 400, 500 and 700 — which this one does —
 * downloaded the same 32 KB latin file four times over, on the critical path to
 * first paint, plus up to four copies of the 14.8 KB latin-ext file. Up to
 * 188 KB where 47 KB suffices.
 *
 * `font-weight: 100 900` is the variable-font range syntax: it tells the browser
 * this one file answers any weight in that span, so it fetches once and moves
 * the axis. Nothing about the rendered result changes.
 *
 * `unicode-range` is kept as Google generated it. It is what stops the
 * latin-ext file being fetched at all until the page actually uses a character
 * outside basic Latin — which on the Romanian side means ă, ș and ț, and on the
 * English side means never.
 */

@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/Outfit-variable-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/Outfit-variable-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;
}
