/* 
 * ============================================
 * FUTURA PT SCHRIFTART EINBINDUNG
 * ============================================
 */

/* OPTION 1: Adobe Fonts (Kostenpflichtig mit Creative Cloud) 
 * --------------------------------------------------------
 * Wenn Sie Adobe Creative Cloud haben:
 * 1. Gehen Sie zu https://fonts.adobe.com/fonts/futura-pt
 * 2. Aktivieren Sie die Schrift
 * 3. Kopieren Sie den Web Project Code hier ein:
 */

/* @import url("https://use.typekit.net/IHR-PROJEKT-CODE.css"); */


/* OPTION 2: MyFonts Webfont (Einmalige Lizenzgebühr)
 * --------------------------------------------------------
 * Kaufen Sie die Webfont-Lizenz bei:
 * https://www.myfonts.com/fonts/paratype/futura-book/
 * Ca. 75-150€ je nach Anzahl der Seitenaufrufe
 */

/* 
@font-face {
    font-family: 'Futura PT';
    src: url('fonts/FuturaPT-Book.woff2') format('woff2'),
         url('fonts/FuturaPT-Book.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Futura PT';
    src: url('fonts/FuturaPT-Light.woff2') format('woff2'),
         url('fonts/FuturaPT-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Futura PT';
    src: url('fonts/FuturaPT-Medium.woff2') format('woff2'),
         url('fonts/FuturaPT-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Futura PT';
    src: url('fonts/FuturaPT-Bold.woff2') format('woff2'),
         url('fonts/FuturaPT-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}
*/


/* OPTION 3: Kostenlose Alternative - Jost (Google Fonts)
 * --------------------------------------------------------
 * Jost ist eine sehr ähnliche, kostenlose Alternative zu Futura
 * Geometrisch, modern und professionell
 */

@import url('https://fonts.googleapis.com/css2?family=Jost:wght@200;300;400;500;600;700&display=swap');

/* Damit Jost als Futura PT Ersatz funktioniert: */
@font-face {
    font-family: 'Futura PT Alternative';
    src: local('Jost');
    font-weight: 200;
}

/* 
 * HINWEIS: Die CSS verwendet bereits Fallback-Schriften:
 * 'Futura PT', 'Futura', 'Avant Garde', 'Century Gothic', Arial
 * 
 * - Wenn Futura PT nicht verfügbar ist, wird automatisch
 *   eine ähnliche geometrische Schrift verwendet
 * - Century Gothic ist auf vielen Windows-Systemen vorinstalliert
 * - Avant Garde ist auf vielen Mac-Systemen verfügbar
 */


/* OPTION 4: Alternative kostenlose geometrische Schriften
 * --------------------------------------------------------
 * Falls Sie eine andere kostenlose Alternative bevorzugen:
 */

/* Questrial - Sehr sauber und minimalistisch */
/* @import url('https://fonts.googleapis.com/css2?family=Questrial&display=swap'); */

/* Montserrat - Modern und vielseitig */
/* @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap'); */

/* Poppins - Freundlich und modern */
/* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap'); */
