/*
  Реальные @font-face (woff2) — грузится АСИНХРОННО (styles.twig, media=print trick),
  отдельно от инлайнового main.css. Первый рендер идёт на откалиброванном фолбэке
  (base/fonts.css) — свап без сдвига. Пути абсолютные: файл подключается как статика
  мимо postcss-сборки. Шрифт — TT Hoves Pro (текст — Regular/Bold, заголовки — Expanded).
*/

@font-face {
  font-family: HovesPro;
  src: url('/assets/fonts/hoves/HovesPro-Regular.woff2?v=1') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: HovesPro;
  src: url('/assets/fonts/hoves/HovesPro-Bold.woff2?v=1') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: HovesProExpanded;
  src: url('/assets/fonts/hoves/HovesProExpanded-Medium.woff2?v=1') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: HovesProExpanded;
  src: url('/assets/fonts/hoves/HovesProExpanded-Bold.woff2?v=1') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
