@charset "UTF-8";

/* Магический шрифт для заголовков и меню */
@font-face {
  font-family: 'FlaviusUniversal';
  font-style: normal;
  font-weight: normal;
  font-display: swap;
  src: url('./FlaviusUniversal.ttf') format('truetype');
}

/* Основной шрифт e-Ukraine для текстов */
@font-face {
  font-family: 'e-Ukraine';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url('./e-Ukraine-Thin.otf') format('opentype');
}

@font-face {
  font-family: 'e-Ukraine';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url('./e-Ukraine-UltraLight.otf') format('opentype');
}

@font-face {
  font-family: 'e-Ukraine';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('./e-Ukraine-Light.otf') format('opentype');
}

@font-face {
  font-family: 'e-Ukraine';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('./e-Ukraine-Regular.otf') format('opentype');
}

@font-face {
  font-family: 'e-Ukraine';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('./e-Ukraine-Medium.otf') format('opentype');
}

@font-face {
  font-family: 'e-Ukraine';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('./e-Ukraine-Bold.otf') format('opentype');
}

/* Применение шрифтов */
body {
  font-family: 'e-Ukraine', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Заголовки и меню используют магический шрифт */
h1, h2, h3, h4, h5, h6, 
.main-navigation,
.menu,
.site-title,
.mystical-text {
  font-family: var(--font-family-primary);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
