/* Custom Font Overrides to match Folio Template */

/* Outfit Font */
@font-face {
  font-family: 'Outfit';
  src: url('../fonts/Outfit.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Outfit Font Medium */
@font-face {
  font-family: 'Outfit';
  src: url('../fonts/Outfit.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --bs-body-font-family: "Poppins", sans-serif;
}

body {
  font-family: "Poppins", sans-serif !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif !important;
}

.navbar-brand,
.nav-link,
.btn {
  font-family: "Poppins", sans-serif !important;
}

/* Inter font for specific elements if needed */
.inter-font {
  font-family: "Inter", sans-serif !important;
}

/* Outfit font for specific elements */
.outfit-font {
  font-family: "Outfit", sans-serif !important;
}

/* Outfit font medium weight */
.outfit-font-medium {
  font-family: "Outfit", sans-serif !important;
  font-weight: 500 !important;
}

/* Override any Heebo references */
[style*="Heebo"] {
  font-family: "Poppins", sans-serif !important;
}

/* Override any Roboto references */
[style*="Roboto"] {
  font-family: "Poppins", sans-serif !important;
} 