/**
 * Pixel Art Fonts for Bunny Carrot
 */

/* VT323 - Google Fonts Pixel Font */
@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');

/* Press Start 2P - Authentic Pixel Font */
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

/* Silkscreen - Clean Pixel Font */
@import url('https://fonts.googleapis.com/css2?family=Silkscreen:wght@400;700&display=swap');

/* Pixelify Sans - Modern Pixel Font */
@import url('https://fonts.googleapis.com/css2?family=Pixelify+Sans:wght@400;500;600;700&display=swap');

:root {
  --font-pixel-title: 'Press Start 2P', 'VT323', 'Courier New', monospace;
  --font-pixel-body: 'VT323', 'Courier New', monospace;
  --font-pixel-modern: 'Pixelify Sans', 'VT323', monospace;
  --font-pixel-clean: 'Silkscreen', 'VT323', monospace;
}

/* Pixel-perfect rendering */
body, .pixel-text {
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
  font-smooth: never;
  -webkit-font-smoothing: none;
  -moz-osx-font-smoothing: grayscale;
}

