/* Use JetBrains Mono for everything */

@font-face {
  font-family: 'Inter';
  src: url('/fonts/Inter-Variable.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  letter-spacing: -0.01em;
  line-height: 1.6;
}
/* Cursor Blink Animation for Typewriter Effect */
.cursor-blink {
    animation: blink 1s step-end infinite;
    color: #111827; /* gray-900 */
    font-weight: bold;
    margin-left: 2px;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}