/**
 * DocuPOW — Self-hosted @font-face declarations
 *
 * Drop the matching .woff2 files into  assets/fonts/  using these exact names:
 *   inter-400.woff2         (Inter Regular)
 *   inter-500.woff2         (Inter Medium)
 *   inter-600.woff2         (Inter SemiBold)
 *   inter-700.woff2         (Inter Bold)
 *   jetbrainsmono-400.woff2 (JetBrains Mono Regular)
 *   jetbrainsmono-500.woff2 (JetBrains Mono Medium)
 *
 * This stylesheet is enqueued conditionally (only when at least one .woff2 is
 * present) so there are no 404s before the fonts are added. font-display:swap
 * keeps text visible during load; the token fallbacks cover any missing weight.
 */

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

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

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

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

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

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