/*
  Реальные @font-face (woff2) — грузится АСИНХРОННО (styles.twig, media=print trick),
  отдельно от инлайнового main.css. Зачем: Chrome качает шрифты с приоритетом
  Highest — при объявлении в инлайн-CSS они стартуют сразу и душат LCP-картинку
  на медленном 4G. Первый рендер идёт на откалиброванном фолбэке (base/fonts.css).

  Пути абсолютные: файл подключается как статика мимо postcss-сборки.
  Grandis — фирменный шрифт JAECOO (~19 КиБ/начертание).
*/

@font-face {
  font-family: Grandis;
  src: url('/assets/fonts/grandis/Grandis-Light.woff2?v=1') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

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

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

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

@font-face {
  font-family: Grandis;
  src: url('/assets/fonts/grandis/Grandis-Black.woff2?v=1') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
