/* Заголовочные шрифты лежат у нас, а не тянутся с Google: посетителю это
   быстрее (нет обращения к чужому домену), и сайт не ломается там, где
   Google Fonts недоступен. Взяты только кириллица и латиница нужных
   начертаний — все шесть файлов вместе весят меньше 120 КБ.
   unicode-range заставляет браузер качать кириллицу только когда она нужна. */

@font-face {
  font-family: "Lora"; font-style: normal; font-weight: 600; font-display: swap;
  src: url("/fonts/Lora-wght-600-cyr.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Lora"; font-style: normal; font-weight: 600; font-display: swap;
  src: url("/fonts/Lora-wght-600-lat.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+2000-206F, U+2122, U+2191, U+2193, U+2212;
}
@font-face {
  font-family: "Lora"; font-style: normal; font-weight: 700; font-display: swap;
  src: url("/fonts/Lora-wght-700-cyr.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Lora"; font-style: normal; font-weight: 700; font-display: swap;
  src: url("/fonts/Lora-wght-700-lat.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+2000-206F, U+2122, U+2191, U+2193, U+2212;
}
@font-face {
  font-family: "PT Serif"; font-style: normal; font-weight: 700; font-display: swap;
  src: url("/fonts/PT-Serif-wght-700-cyr.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "PT Serif"; font-style: normal; font-weight: 700; font-display: swap;
  src: url("/fonts/PT-Serif-wght-700-lat.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+2000-206F, U+2122, U+2191, U+2193, U+2212;
}

@font-face {
  font-family: "Lora"; font-style: italic; font-weight: 400; font-display: swap;
  src: url("/fonts/Lora-italic-400-cyr.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Lora"; font-style: italic; font-weight: 400; font-display: swap;
  src: url("/fonts/Lora-italic-400-lat.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212;
}

/* Засечки только в заглавных местах: логотип, заголовки страниц и разделов.
   Текст и перечни остаются рубленым шрифтом — на экране он читается легче,
   а засечки в длинном списке быстро утомляют. */
.brand, h1, h2 { font-family: var(--ttl, "Lora"), Georgia, "Times New Roman", serif; }
h1 { letter-spacing: -.01em; }
