/*
 * LOCAL FONTS – Datenschutzkonform (nDSG/DSGVO)
 * Keine Verbindung zu Google-Servern
 *
 * SETUP: Download fonts from https://gwfh.mranftl.com/fonts
 * Select: Playfair Display (regular, italic, 600, 700) + Lato (300, regular, 700)
 * Place 7 .woff2 files in /assets/fonts/
 *
 * Note: Lato has no 600 weight. The 700 file covers 600–700 via font-weight range.
 *
 * @modified 5.12.0 – Removed non-existent Lato 600, added weight range on 700
 */

/* === Playfair Display === */
@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local('Playfair Display Regular'),
         url('../fonts/playfair-display-v40-latin-regular.woff2') format('woff2');
}
@font-face {
    font-family: 'Playfair Display';
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: local('Playfair Display Italic'),
         url('../fonts/playfair-display-v40-latin-italic.woff2') format('woff2');
}
@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: local('Playfair Display SemiBold'),
         url('../fonts/playfair-display-v40-latin-600.woff2') format('woff2');
}
@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: local('Playfair Display Bold'),
         url('../fonts/playfair-display-v40-latin-700.woff2') format('woff2');
}

/* === Lato === */
@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: local('Lato Light'),
         url('../fonts/lato-v25-latin-300.woff2') format('woff2');
}
@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local('Lato Regular'),
         url('../fonts/lato-v25-latin-regular.woff2') format('woff2');
}
@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 600 700;
    font-display: swap;
    src: local('Lato Bold'),
         url('../fonts/lato-v25-latin-700.woff2') format('woff2');
}
