/* ═══════════════════════════════════════════════════════════════
   GREEN SOLUTION — Self-hosted fonts
   GDPR compliant: i font sono serviti dal dominio del sito,
   nessun IP utente viene trasmesso a Google Fonts.
   
   ISTRUZIONI DOWNLOAD FONT FILES:
   1. Vai su https://gwfh.mranftl.com/fonts (Google Webfonts Helper)
   2. Cerca "Titillium Web" → seleziona pesi: 400, 600, 700, 900
   3. Scarica lo zip, estrai i file .woff2 e rinomina:
      - titillium-400.woff2
      - titillium-600.woff2
      - titillium-700.woff2
      - titillium-900.woff2
   4. Ripeti per "Merriweather" pesi 700 e 900:
      - merriweather-700.woff2
      - merriweather-900.woff2
   5. Carica tutto in /assets/fonts/
   ═══════════════════════════════════════════════════════════════ */

/* ── TITILLIUM WEB ─────────────────────────────────────────── */
@font-face {
  font-family: 'Titillium Web';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/titillium-400.woff2') format('woff2');
}

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

@font-face {
  font-family: 'Titillium Web';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/titillium-700.woff2') format('woff2');
}

@font-face {
  font-family: 'Titillium Web';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('../fonts/titillium-900.woff2') format('woff2');
}

/* ── MERRIWEATHER (heading) ───────────────────────────────── */
@font-face {
  font-family: 'Merriweather';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/merriweather-700.woff2') format('woff2');
}

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