/* ===========================================
   LOKALE SCHRIFTEN - DSGVO-KONFORM
   ===========================================
   
   ANLEITUNG: Lade die Schriften herunter und speichere sie im fonts/ Ordner:
   
   1. Arvo (für Headlines):
      https://fonts.google.com/specimen/Arvo
      → Download → Entpacken → Arvo-Regular.ttf und Arvo-Bold.ttf
   
   2. Montserrat (für Fließtext):
      https://fonts.google.com/specimen/Montserrat
      → Download → Entpacken → Montserrat-Regular.ttf, Montserrat-Medium.ttf, 
        Montserrat-SemiBold.ttf, Montserrat-Bold.ttf
   
   Alternativ WOFF2-Format von: https://gwfh.mranftl.com/fonts
   (Google Webfonts Helper - hostet die Fonts nicht, nur Download)
   
   =========================================== */

/* Arvo - Slab Serif für Headlines */
@font-face {
    font-family: 'Arvo';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local('Arvo'),
         url('Arvo/Arvo-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Arvo';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: local('Arvo Bold'),
         url('Arvo/Arvo-Bold.ttf') format('truetype');
}

/* Montserrat - Sans Serif für Fließtext */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local('Montserrat'),
         url('Montserrat/static/Montserrat-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: local('Montserrat Medium'),
         url('Montserrat/static/Montserrat-Medium.ttf') format('truetype');
}

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: local('Montserrat SemiBold'),
         url('Montserrat/static/Montserrat-SemiBold.ttf') format('truetype');
}

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: local('Montserrat Bold'),
         url('Montserrat/static/Montserrat-Bold.ttf') format('truetype');
}
