/* Font Imports */
@font-face {
  font-family: "Inter";
  src: local("Inter-Regular"), url("../fonts/Inter/static/Inter-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: local("Inter-Bold"), url("../fonts/Inter/static/Inter-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
/* Repeat the above @font-face blocks for other Inter font weights and styles */
@font-face {
  font-family: "Merriweather Sans";
  src: local("MerriweatherSans-Regular"), url("../fonts/Merriweather_Sans/static/MerriweatherSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
/* Repeat the above @font-face block for other Merriweather Sans font weights and styles */
/* Variables */
/* Rest of your CSS... */
h1 {
  font-family: Inter, "Black Italic", "Inter", sans-serif;
  font-size: 35px;
  font-weight: 900;
  text-transform: uppercase;
}

h2 {
  font-family: Inter, "Bold Italic", "Inter", sans-serif;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
}

h3 {
  font-family: Inter, "Bold Italic", "Inter", sans-serif;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
}

h4 {
  font-family: Inter, "Black Italic", "Inter", sans-serif;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}

body {
  font-family: Merriweather Sans, Regular, "Inter", sans-serif;
  font-size: 16px;
  font-weight: normal;
}

@media (max-width: 768px) {
  h1 {
    font-family: Inter, "Black Italic", "Inter", sans-serif;
    font-size: 21px;
    font-weight: 900;
  }
  h2 {
    font-family: Inter, "Bold Italic", "Inter", sans-serif;
    font-size: 16px;
    font-weight: 700;
  }
  h4 {
    font-family: Inter, "Black Italic", "Inter", sans-serif;
    font-size: 16px;
    font-weight: 900;
  }
  body {
    font-family: Merriweather Sans, Regular, "Inter", sans-serif;
    font-size: 14px;
    font-weight: normal;
  }
}