/* ============================================================
   M44 Ventures — Font auto-ospitati (TASK-019, luglio 2026)
   ------------------------------------------------------------
   Sostituisce Google Fonts CDN: tutti i font sono serviti dal
   dominio m44ventures.ch, senza chiamate a server di terzi.
   File WOFF2 in /assets/fonts/ (subset latin,
   sorgente: google-webfonts-helper / Fontsource).
   font-display: swap → il testo resta visibile durante il
   caricamento (nessun peggioramento Lighthouse/CLS).
   Pesi replicati 1:1 dal precedente <link> css2:
   Sora 400/600/700/800 · Inter 400/500/600 · Space Mono 400/700
   ============================================================ */

/* ---------- Sora — titoli h1/h2/h3, pulsanti ---------- */
@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/sora-400.woff2') format('woff2');
}
@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');
}

/* ---------- Inter — corpo testo ---------- */
@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');
}

/* ---------- Space Mono — navbar, label, eyebrow, codici ---------- */
@font-face {
  font-family: 'Space Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/space-mono-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Space Mono';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/space-mono-700.woff2') format('woff2');
}
