/*
 * Font-Face Definitionen für DSGVO-konforme lokale Einbindung
 * Lokale .woff2 Dateien werden priorisiert, Google Fonts als Fallback
 */

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

/* Nunito - SemiBold (600) */
@font-face {
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: local('Nunito SemiBold'), local('Nunito-SemiBold');
}

/* Nunito - Bold (700) */
@font-face {
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: local('Nunito Bold'), local('Nunito-Bold');
}

/* Nunito - ExtraBold (800) */
@font-face {
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: local('Nunito ExtraBold'), local('Nunito-ExtraBold');
}
