/* Thin */
@font-face {
  font-family: gilroy;
  src: url("../fonts/Gilroy-Thin.ttf");
  font-weight: 100;
}
@font-face {
  font-family: gilroy;
  src: url("../fonts/Gilroy-ThinItalic.ttf");
  font-style: italic;
  font-weight: 100;
}
/* UltraLight */
@font-face {
  font-family: gilroy;
  src: url("../fonts/Gilroy-UltraLight.ttf");
  font-weight: 200;
}
@font-face {
  font-family: gilroy;
  src: url("../fonts/Gilroy-UltraLightItalic.ttf");
  font-style: italic;
  font-weight: 200;
}
/* Light */
@font-face {
  font-family: gilroy;
  src: url("../fonts/Gilroy-Light.ttf");
  font-weight: 300;
}
@font-face {
  font-family: gilroy;
  src: url("../fonts/Gilroy-LightItalic.ttf");
  font-style: italic;
  font-weight: 300;
}
/* Medium */
@font-face {
  font-family: gilroy;
  src: url("../fonts/Gilroy-Medium.ttf");
  font-weight: 500;
}
@font-face {
  font-family: gilroy;
  src: url("../fonts/Gilroy-MediumItalic.ttf");
  font-style: italic;
  font-weight: 500;
}
/* Bold */
@font-face {
  font-family: gilroy;
  src: url("../fonts/Gilroy-Bold.ttf");
  font-weight: 700;
}
@font-face {
  font-family: gilroy;
  src: url("../fonts/Gilroy-BoldItalic.ttf");
  font-style: italic;
  font-weight: 700;
}
/* Extrabold */
@font-face {
  font-family: gilroy;
  src: url("../fonts/Gilroy-Extrabold.ttf");
  font-weight: 800;
}
@font-face {
  font-family: gilroy;
  src: url("../fonts/Gilroy-ExtraboldItalic.ttf");
  font-style: italic;
  font-weight: 800;
}
/* Heavy */
@font-face {
  font-family: gilroy;
  src: url("../fonts/Gilroy-Heavy.ttf");
  font-weight: 900;
}
@font-face {
  font-family: gilroy;
  src: url("../fonts/Gilroy-HeavyItalic.ttf");
  font-style: italic;
  font-weight: 900;
}

body {
  font-family: gilroy, -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400; /* Regular по умолчанию */
}

/* Специфичные веса для элементов */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700; /* Bold для всех заголовков */
}

strong,
b {
  font-weight: 700; /* Bold */
}

/* Кнопки и интерактивные элементы */
button,
.btn,
input[type="submit"] {
  font-weight: 500; /* Medium */
}

/* Особые классы для разных начертаний */
.font-thin {
  font-weight: 100;
}
.font-light {
  font-weight: 300;
}
.font-regular {
  font-weight: 400;
}
.font-medium {
  font-weight: 500;
}
.font-bold {
  font-weight: 700;
}
.font-extrabold {
  font-weight: 800;
}
.font-heavy {
  font-weight: 900;
}

.font-italic {
  font-style: italic;
}
