/* Self-hosted, variable, latin-subset fonts for the lead-magnet funnels.
   Replaces the Google Fonts <link> that used display=optional — which, on a
   cold (uncached) load, gave up after ~100ms and stuck the system fallback for
   the whole page (Oswald headlines rendered as San Francisco). Serving the
   woff2 from our own origin + preloading the display font means the brand font
   is available at/near first paint, with font-display:swap as a safe fallback
   and no third-party round-trip. */
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 200 700;
  font-display: swap;
  src: url('/leadMagnet/fonts/oswald.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/leadMagnet/fonts/inter.woff2') format('woff2');
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 100 800;
  font-display: swap;
  src: url('/leadMagnet/fonts/jetbrains-mono.woff2') format('woff2');
}
