/* ============================================================
   MOMENTLY — Self-hosted fonts (GDPR-compliant)
   ------------------------------------------------------------
   Production spec self-hosts all three families so NO request
   ever leaves for Google's servers (no IP / user-agent transfer
   to a third party = no GDPR consent banner needed for fonts).

   To activate:
     1. Run  ./fonts/download-fonts.sh   (populates fonts/*.woff2)
     2. In index.html, REMOVE the Google Fonts <link> and the
        comment block around it (keep this stylesheet linked).

   These are variable fonts: one file per family covers every
   weight (and Fraunces' optical-size axis) used in the system.
   ============================================================ */

@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 300 700;           /* variable weight range */
  font-display: swap;
  src: url("../fonts/fraunces-variable.woff2") format("woff2-variations");
}

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

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