/* Self-hosted rather than served from the Google Fonts CDN: browsers partition
   the HTTP cache by top-level site (Chrome 86, Firefox 85, Safari long before),
   so a CDN copy misses the cache here too. It would add two DNS+TLS handshakes
   to a serialised chain and hand every visitor's IP to a third party.

   This rule sits in static/ instead of src/css/custom.css because css-loader
   resolves root-relative url() against the static dir and emits a second,
   fingerprinted copy of the woff2. The @font-face and the <link rel=preload> in
   docusaurus.config.ts then pointed at different URLs and the browser pulled all
   48KB twice. Docusaurus copies static/ verbatim, so both now hit one path.

   The wght range matches the file's fvar axis, 100-900. At 400 700 the browser
   clamped anything outside it and synthesised the weight instead of
   interpolating the real axis. Latin subset, upright only: <em> gets a
   synthesised oblique, the trade for keeping this to one 47KB request. */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/fonts/inter-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;
}
