/* Custom font imports */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

/* Override default font variables */
:root {
  --font-main: "Inter", sans-serif;
  --font-secondary: "Inter", sans-serif;
}

/* Apply custom font to the entire site */
body {
  font-family: var(--font-secondary);
}

/* You can also customize specific elements */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-main);
  font-weight: 600;
}
