/**
 * Local Font Faces - DJ Steff
 * NO CDN - All fonts served locally (TTF format)
 *
 * Font files:
 * - assets/fonts/poppins-400.ttf
 * - assets/fonts/poppins-600.ttf
 * - assets/fonts/poppins-700.ttf
 * - assets/fonts/righteous-400.ttf
 *
 * Note: TTF used for development. For production (smaller file size),
 * convert to WOFF2: woff2_compress file.ttf
 */

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

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

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

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