/* ============================================================================
   DurDurTec — self-hosted webfonts

   Spec section 1: three families, self-hosted, all SIL OFL and bundleable.
     Display  Sora 600                 headings only
     Body     Plus Jakarta Sans 400/500
     Data     JetBrains Mono 400/500

   Only the weights the spec names are shipped. Latin subset, woff2 only.
   No CDN: this theme makes zero external requests and must keep that.

   font-display: swap so text paints immediately in the fallback and reflows
   once, rather than blocking on the font.
   ============================================================================ */

@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/sora-600.woff2') format('woff2');
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/plus-jakarta-sans-400.woff2') format('woff2');
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/plus-jakarta-sans-500.woff2') format('woff2');
}

@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/jetbrains-mono-400.woff2') format('woff2');
}

@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/jetbrains-mono-500.woff2') format('woff2');
}
