/*
 * fonts.css — Lokal gehostete Schriftarten
 * Ersetzen den Google Fonts CDN-Link komplett.
 *
 * SETUP: Lade die Schriftarten herunter unter:
 *   https://gwfh.mranftl.com/fonts/inter?subsets=latin,latin-ext
 *   https://gwfh.mranftl.com/fonts/playfair-display?subsets=latin,latin-ext
 *
 * Dateien in /Lokales/fonts/ ablegen:
 *   inter-v13-latin-300.woff2
 *   inter-v13-latin-regular.woff2
 *   inter-v13-latin-500.woff2
 *   inter-v13-latin-600.woff2
 *   inter-v13-latin-700.woff2
 *   inter-v13-latin-800.woff2
 *   playfair-display-v37-latin-regular.woff2
 *   playfair-display-v37-latin-italic.woff2
 *   playfair-display-v37-latin-700.woff2
 *   playfair-display-v37-latin-900.woff2
 */

/* Inter 300 */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: local(''),
         url('../fonts/inter-v13-latin-300.woff2') format('woff2');
}

/* Inter 400 */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local(''),
         url('../fonts/inter-v13-latin-regular.woff2') format('woff2');
}

/* Inter 500 */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: local(''),
         url('../fonts/inter-v13-latin-500.woff2') format('woff2');
}

/* Inter 600 */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: local(''),
         url('../fonts/inter-v13-latin-600.woff2') format('woff2');
}

/* Inter 700 */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: local(''),
         url('../fonts/inter-v13-latin-700.woff2') format('woff2');
}

/* Inter 800 */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: local(''),
         url('../fonts/inter-v13-latin-800.woff2') format('woff2');
}

/* Playfair Display 400 */
@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local(''),
         url('../fonts/playfair-display-v37-latin-regular.woff2') format('woff2');
}

/* Playfair Display 400 Italic */
@font-face {
    font-family: 'Playfair Display';
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: local(''),
         url('../fonts/playfair-display-v37-latin-italic.woff2') format('woff2');
}

/* Playfair Display 700 */
@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: local(''),
         url('../fonts/playfair-display-v37-latin-700.woff2') format('woff2');
}

/* Playfair Display 900 */
@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: local(''),
         url('../fonts/playfair-display-v37-latin-900.woff2') format('woff2');
}
