/* Self-hosted fonts for maximum security and performance */
/* Safe configuration with existing OTF files */

/* Regular 400 - Primary font used throughout the project */
@font-face {
  font-family: 'MyriadPro';
  src: url('../fonts/MYRIADPRO-REGULAR.OTF') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Light 300 - Available in the fonts directory */
@font-face {
  font-family: 'MyriadPro';
  src: url('../fonts/MyriadPro-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* Semi Bold 600 - Available in the fonts directory */
@font-face {
  font-family: 'MyriadPro';
  src: url('../fonts/MYRIADPRO-SEMIBOLD.OTF') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* Bold 700 - Available in the fonts directory */
@font-face {
  font-family: 'MyriadPro';
  src: url('../fonts/MYRIADPRO-BOLD.OTF') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Fallback for Poppins - using system fonts instead of external dependency */
.poppins-fallback {
  font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}
