/**
 * ANLEITUNG: Montserrat Schriftart lokal einbinden
 * 
 * 1. Gehe zu https://fonts.google.com/specimen/Montserrat
 * 2. Klicke auf "Download family"
 * 3. Entpacke die ZIP-Datei
 * 4. Kopiere die .ttf Dateien aus dem "static" Ordner hierher
 * 
 * Benötigte Dateien und ihre echten Namen:
 * - Montserrat-Regular.ttf (weight 400)
 * - Montserrat-Medium.ttf (weight 500)
 * - Montserrat-SemiBold.ttf (weight 600)
 * - Montserrat-Bold.ttf (weight 700)
 * - Montserrat-ExtraBold.ttf (weight 800)
 */

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

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

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

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

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