/* TerraCrop AI OS — self-hosted fonts.
 * Replaces fonts.googleapis.com + fonts.gstatic.com roundtrip.
 * Inter is shipped as a single variable woff2 covering weights 300-700.
 * Poppins ships as three weight-specific woff2 files.
 * Total: ~72 KB, cached forever once fetched.
 */

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/static/fonts/inter-var.woff2') format('woff2-variations'),
       url('/static/fonts/inter-var.woff2') format('woff2');
}

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

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

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('/static/fonts/poppins-800.woff2') format('woff2');
}
