/* ═══════════════════════════════════════════════════════
   WP-THEME-LINGUA | FONTS
   Self-hosted fonts for GDPR compliance + performance
   ═══════════════════════════════════════════════════════ */

/*
  Inter & Outfit fonts are self-hosted here.
  To add the actual font files:
  1. Download from Google Fonts: https://fonts.google.com/specimen/Inter
  2. Download from Google Fonts: https://fonts.google.com/specimen/Outfit
  3. Place .woff2 files in wp-theme-lingua/assets/fonts/inter/ and /outfit/
  4. Uncomment the @font-face blocks below.

  OR use the Google Fonts API (add to wp_head):
  <link rel="preconnect" href="https://fonts.googleapis.com">
  <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;900&family=Outfit:wght@700;800;900&display=swap">
*/

/* ── Inter (Body) ─────────────────────────────────────────
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter/inter-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter/inter-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter/inter-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter/inter-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter/inter-900.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

── Outfit (Display / Headings) ──────────────────────────
@font-face {
  font-family: 'Outfit';
  src: url('../fonts/outfit/outfit-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Outfit';
  src: url('../fonts/outfit/outfit-800.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Outfit';
  src: url('../fonts/outfit/outfit-900.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
*/

/* Fallback — Load from Google Fonts CDN while self-hosted fonts are set up */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;900&family=Outfit:wght@700;800;900&display=swap');
