/**
 * IBM Plex Sans Font System
 * Self-hosted fonts for performance and reliability
 */

/* IBM Plex Sans Regular */
@font-face {
  font-family: 'IBM Plex Sans';
  src: url('../fonts/IBMPlexSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

/* IBM Plex Sans SemiBold */
@font-face {
  font-family: 'IBM Plex Sans';
  src: url('../fonts/IBMPlexSans-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* IBM Plex Sans Bold */
@font-face {
  font-family: 'IBM Plex Sans';
  src: url('../fonts/IBMPlexSans-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Font optimization for critical loading */
@media (max-width: 767px) {
  /* Reduce font weights on mobile for performance */
  .hero-title,
  h1, h2, h3 {
    font-weight: 600; /* Use SemiBold instead of Bold on mobile */
  }
}