@tailwind base;
@tailwind components;
@tailwind utilities;

@layer base {
  html {
    font-family: 'Noto Sans', sans-serif;
    color: #212121; /* text-brand-text */
    background-color: #FAFAFA; /* bg-brand-bg */
  }
}

@layer utilities {
  /* Spezielle Klasse für alle H1, H2, H3 */
  .font-industrial {
    font-family: 'Noto Sans', sans-serif;
    font-variation-settings: 'wdth' 62.5, 'wght' 600; /* Extra Condensed + SemiBold */
  }
}
