/* ═══════ TYPE, FROM THIS ORIGIN ═══════
   These two faces used to arrive as a render-blocking <link> to
   fonts.googleapis.com, which is two cross-origin round trips before the page
   can paint: one for the stylesheet, then one per woff2 it names. The stylesheet
   request was the worse of the two, because only fonts.gstatic.com was
   preconnected — the host that actually blocked rendering paid a full cold
   DNS + TLS handshake on the critical path, and the film's opening clip queued
   behind it.

   Latin subset only. Google serves 39 @font-face blocks across cyrillic, greek,
   vietnamese and latin-ext; this page is English and the other 33 were dead
   weight. Both files are the variable faces, so one download covers every weight
   the page asks for: three files, 105 KB total, against thirteen requests before.

   display: swap keeps the previous behaviour — text paints immediately in the
   fallback and swaps when the face lands. Nothing here changes how the page
   looks; it changes when it can start looking like it. */

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url('/reel/fonts/inter-normal-var.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: 'Inter';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/reel/fonts/inter-italic-var.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: 'JetBrains Mono';
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url('/reel/fonts/jetbrains-mono-normal-var.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;
}
