/* CRITICAL FONTS - Завантажується першим! */

/* Neue Haas Grotesk Text - Regular (400) */
@font-face {
    font-family: 'Neue Haas Grotesk';
    src: url('/static/fonts/NeueHaasGrotText-55Roman-Trial.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    font-preload: true;
}

/* Neue Haas Grotesk Text - Medium (500) */
@font-face {
    font-family: 'Neue Haas Grotesk';
    src: url('/static/fonts/NeueHaasGrotText-65Medium-Trial.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
    font-preload: true;
}

/* Neue Haas Grotesk Text - Bold (700) */
@font-face {
    font-family: 'Neue Haas Grotesk';
    src: url('/static/fonts/NeueHaasGrotText-75Bold-Trial.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
    font-preload: true;
}

/* Принудительно застосовуємо шрифт */
* {
    font-family: 'Neue Haas Grotesk', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* Спеціальні класи для перевірки */
.font-neue-haas {
    font-family: 'Neue Haas Grotesk', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.font-neue-haas-400 {
    font-family: 'Neue Haas Grotesk', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 400;
}

.font-neue-haas-500 {
    font-family: 'Neue Haas Grotesk', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 500;
}

.font-neue-haas-700 {
    font-family: 'Neue Haas Grotesk', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 700;
}
