/* ===== Lato через Google Fonts (с font-display: swap) ===== */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;400i;700;700i&display=swap');

/* ===== Bitter локально (OTF) ===== */
@font-face{
  font-family: "Bitter";
  src: url("../fonts/Bitter-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face{
  font-family: "Bitter";
  src: url("../fonts/Bitter-Italic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face{
  font-family: "Bitter";
  src: url("../fonts/Bitter-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face{
  font-family: "Bitter";
  src: url("../fonts/Bitter-BoldItalic.otf") format("opentype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* Роли шрифтов по гайду: Lato — копирайт, Bitter — заголовки */
html, body{
  font-family: "Lato", "Helvetica Neue", Arial, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Noto Sans", sans-serif;
}
h1,h2,h3,h4,h5,h6{
  font-family: "Bitter", Georgia, "Times New Roman", serif;
}
