/* ═══════════════════════════════════════════════════════════════════════
   VIT Orion Academy — Self-Hosted Fonts
   GDPR-compliant alternative to Google Fonts (no external IP transfer)

   SETUP INSTRUCTIONS:
   1. Run the download script:  bash download-fonts.sh
      (or manually download from https://fonts.google.com)
   2. Place the resulting /fonts/ folder at the root of your project
   3. This file is already linked in all HTML pages as:
      <link rel="stylesheet" href="fonts.css">

   Font folder structure expected:
   /fonts/
     CormorantGaramond-Light.woff2
     CormorantGaramond-Regular.woff2
     CormorantGaramond-Medium.woff2
     CormorantGaramond-SemiBold.woff2
     CormorantGaramond-Bold.woff2
     CormorantGaramond-LightItalic.woff2
     CormorantGaramond-Italic.woff2
     Rajdhani-Light.woff2
     Rajdhani-Regular.woff2
     Rajdhani-Medium.woff2
     Rajdhani-SemiBold.woff2
     Rajdhani-Bold.woff2
   ═══════════════════════════════════════════════════════════════════════ */

/* ── Cormorant Garamond ────────────────────────────────────────────────── */
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/CormorantGaramond-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/CormorantGaramond-LightItalic.woff2') format('woff2');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/CormorantGaramond-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/CormorantGaramond-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/CormorantGaramond-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/CormorantGaramond-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/CormorantGaramond-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ── Rajdhani ──────────────────────────────────────────────────────────── */
@font-face {
  font-family: 'Rajdhani';
  src: url('fonts/Rajdhani-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Rajdhani';
  src: url('fonts/Rajdhani-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Rajdhani';
  src: url('fonts/Rajdhani-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Rajdhani';
  src: url('fonts/Rajdhani-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Rajdhani';
  src: url('fonts/Rajdhani-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
