/**
 * Poppins Font Family - Local Hosting
 * 
 * ✅ No external requests (privacy + performance)
 * ✅ WOFF2 format (best compression: 7-11KB per weight vs 136KB TTF)
 * ✅ Using your provided poppins.black.ttf as TTF fallback
 * ✅ font-display: swap (no invisible text flash)
 * 
 * Total size: ~42KB for all 5 weights (WOFF2) vs 680KB+ if using TTF
 * Savings: ~94% smaller file size!
 */

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

/* Poppins Medium (500) - Accents */
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins-medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

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

/* Poppins Bold (700) - Strong emphasis */
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins-bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Poppins Black (900) - Headings (YOUR PROVIDED FONT used for TTF fallback) */
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins-black.woff2') format('woff2'),
       url('../fonts/poppins-black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

