/* ============================================================
   MicroNation Manager v3 – Local Webfonts (fonts.css)
   ============================================================

   INSTALLATION:
   1. Fonts herunterladen:
      - Cinzel: https://fonts.google.com/specimen/Cinzel
      - Crimson Pro: https://fonts.google.com/specimen/Crimson+Pro

   2. Font-Dateien in /fonts/ Ordner kopieren:
      - /fonts/Cinzel-Regular.woff2
      - /fonts/Cinzel-SemiBold.woff2
      - /fonts/Cinzel-Bold.woff2
      - /fonts/CrimsonPro-Light.woff2
      - /fonts/CrimsonPro-Regular.woff2
      - /fonts/CrimsonPro-LightItalic.woff2

   3. Diese Datei in header.php einbinden (vor main.css):
      <link rel="stylesheet" href="/css/fonts.css">

   4. Google Fonts Link aus header.php entfernen
   ============================================================ */

/* Cinzel */
@font-face {
    font-family: 'Cinzel';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/fonts/Cinzel-Regular.woff2') format('woff2');
}

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

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

/* Crimson Pro */
@font-face {
    font-family: 'Crimson Pro';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('/fonts/CrimsonPro-Light.woff2') format('woff2');
}

@font-face {
    font-family: 'Crimson Pro';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/fonts/CrimsonPro-Regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Crimson Pro';
    font-style: italic;
    font-weight: 300;
    font-display: swap;
    src: url('/fonts/CrimsonPro-LightItalic.woff2') format('woff2');
}
