/*
   Self-hosted Inter. Replaces the three <link> tags that pulled this from
   fonts.googleapis.com / fonts.gstatic.com in both index.html files.

   WHY SELF-HOSTED, NOT A PREFERENCE:
     • Hot-linking sent every visitor's IP, User-Agent and Referer to Google on every
       page load, before render, with no consent and no mention in our Privacy Policy.
       LG München I (20.01.2022, 3 O 17493/20) awarded damages for exactly this, on the
       reasoning that self-hosting achieves an identical result — so the transfer was
       never necessary. Unlike Stripe or Auth0, there is no necessity defence for a font.
     • fonts.googleapis.com is unreachable in mainland China. We sell travel guides to
       people who are, by definition, on unfamiliar foreign networks. Making first render
       depend on reaching a Google server from wherever they happen to be standing is
       backwards for this product specifically.

   BOTH latin AND latin-ext SUBSETS ARE BUNDLED, DELIBERATELY. Google's hosted CSS split
   these with unicode-range and served whichever was needed; self-hosting means we choose.
   Creator names and cities like "Selçuk", "Søren" or "Côte d'Ivoire" live in latin-ext —
   ship latin only and those characters render in a system fallback MID-WORD. Nobody
   catches that in testing, because English test data never contains them.

   Weights match the old Google request exactly (wght@400;500;600;700), no italic axis —
   we never loaded italics, so nothing changes visually.

   No local() source: it would let a stale or differently-hinted Inter installed on the
   user's machine win over the file we ship, producing rendering we never tested.
*/

/* inter-regular - latin_latin-ext */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/inter-v20-latin_latin-ext-regular.woff2') format('woff2');
}

/* inter-500 - latin_latin-ext */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/inter-v20-latin_latin-ext-500.woff2') format('woff2');
}

/* inter-600 - latin_latin-ext */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/inter-v20-latin_latin-ext-600.woff2') format('woff2');
}

/* inter-700 - latin_latin-ext */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/inter-v20-latin_latin-ext-700.woff2') format('woff2');
}
