/* fonts.css — подключение локальных шрифтов
   Файл автоматически настроен под имеющиеся в папке файлы шрифтов.
   Рекомендуется хранить также версии woff2 / woff для лучшей загрузки в браузерах.

   Найденные файлы (пример):
   - Bangle Normal.ttf
   - fortnitebattlefest.ttf
   - HeadingNowTrial-64Regular.ttf
   - HeadingNowTrial-66Bold.ttf
   - HeadingNowTrial-67Extrabold.ttf
   - Montserrat-VariableFont_wght.ttf

   Использование: в `styles.css` указывайте `font-family: 'MontserratVar', system-ui, sans-serif;`
*/

@font-face {
  font-family: 'Fortnite';
  src: url('fortnitebattlefest.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* @font-face block for 'Bangle' removed temporarily because the local TTF caused
  OTS parsing errors in some browsers. To re-enable, add a valid 'src' (preferably
  woff2/woff) and the @font-face block back here. */

@font-face {
  font-family: 'HeadingNow';
  src: url('HeadingNowTrial-64Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'HeadingNow';
  src: url('HeadingNowTrial-66Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'HeadingNow';
  src: url('Heading-Now-75-Medium-trial.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}


@font-face {
  font-family: 'HeadingNow';
  src: url('HeadingNowTrial-67Extrabold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* Переменная версия Montserrat — задаём диапазон весов */
@font-face {
  font-family: 'MontserratVar';
  src: url('Montserrat-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 400 500 600 900;
  font-style: normal;
  font-display: swap;
}

/* Устанавливаем шрифт по умолчанию для страницы (можно переопределить в styles.css) */
body {
  font-family: 'MontserratVar', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
