/* Poppins Font Face Declarations - Standardized Weights */
/* Only 4 weights + italics: ExtraLight (200), Regular (400), SemiBold (600), ExtraBold (800) */

/* ExtraLight 200 */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url('/fonts/Poppins-ExtraLight.woff2') format('woff2'),
       url('/fonts/Poppins-ExtraLight.ttf') format('truetype');
}

/* ExtraLight Italic 200 */
@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 200;
  font-display: swap;
  src: url('/fonts/Poppins-ExtraLightItalic.woff2') format('woff2'),
       url('/fonts/Poppins-ExtraLightItalic.ttf') format('truetype');
}

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

/* Regular Italic 400 */
@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/Poppins-Italic.woff2') format('woff2'),
       url('/fonts/Poppins-Italic.ttf') format('truetype');
}

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

/* SemiBold Italic 600 */
@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/Poppins-SemiBoldItalic.woff2') format('woff2'),
       url('/fonts/Poppins-SemiBoldItalic.ttf') format('truetype');
}

/* ExtraBold 800 */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('/fonts/Poppins-ExtraBold.woff2') format('woff2'),
       url('/fonts/Poppins-ExtraBold.ttf') format('truetype');
}

/* ExtraBold Italic 800 */
@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: url('/fonts/Poppins-ExtraBoldItalic.woff2') format('woff2'),
       url('/fonts/Poppins-ExtraBoldItalic.ttf') format('truetype');
}