/* TripTea — local Cyrillic Poppins (Regular + Bold only).
   Source: https://github.com/alexburba/poppins-cyrillic-typeface (community fork; Google Fonts Poppins has no Cyrillic).
   The unicode-range narrows these faces to Cyrillic, so Latin keeps using Google Fonts.
   Weights other than 400/700 fall back to system on Cyrillic glyphs (no community fork has them). */

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Poppins'), local('Poppins-Regular'),
       url('PoppinsCyr-Regular.woff2') format('woff2');
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+0500-052F, U+2116;
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local('Poppins Bold'), local('Poppins-Bold'),
       url('PoppinsCyr-Bold.woff2') format('woff2');
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+0500-052F, U+2116;
}
