/* Self-hosted fonts — removes the third-party request to fonts.googleapis.com
   (which would otherwise send visitor IPs to Google = a GDPR concern in the EU).

   Sora and DM Sans are licensed under the SIL Open Font License, so
   self-hosting is explicitly permitted.

   SETUP (one-time, ~2 min): download the woff2 files into this folder.
   See public/fonts/README.md for the exact links and filenames. */

/* ---- Sora ---- */
@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: 'Sora';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/sora-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('/fonts/sora-800.woff2') format('woff2');
}

/* ---- DM Sans ---- */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/dmsans-400.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/dmsans-500.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/dmsans-600.woff2') format('woff2');
}
