/* Font Display Optimization for Performance */
/* This ensures fonts render immediately with fallback, improving LCP */

@font-face {
  font-family: "Poppins";
  font-display: swap;
  font-style: normal;
  font-weight: 300 600;
}

@font-face {
  font-family: "Syne";
  font-display: swap;
  font-style: normal;
  font-weight: 400 800;
}

@font-face {
  font-family: "Bebas Neue";
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

/* Prevent invisible text during font load */
body {
  font-display: swap;
}

/* Optimize font loading for critical text */
.hero-title,
.font-display {
  font-display: swap;
}

