/**
 * Self-hosted fonts for GDPR/RODO compliance
 * Replaces Google Fonts API to avoid sharing user IP addresses
 * 
 * Fonts included:
 * - Inter: 300, 400, 600, 800 (Latin Extended)
 * - JetBrains Mono: 400, 700 (Latin + Latin Extended)
 * 
 * All fonts in WOFF2 format for optimal performance
 * Font files should be placed in /public/fonts/ directory
 */

/* Inter Font Family */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('/fonts/inter-v13-latin-ext-300.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/inter-v13-latin-ext-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/inter-v13-latin-ext-600.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('/fonts/inter-v13-latin-ext-800.woff2') format('woff2');
}

/* JetBrains Mono Font Family */
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/jetbrains-mono-v24-latin_latin-ext-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/jetbrains-mono-v24-latin_latin-ext-700.woff2') format('woff2');
}
