/* Additional Fonts CSS - Extended font definitions and fallbacks */

/* Additional Google Fonts imports */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Extended font family definitions */
:root {
  --font-roboto: 'Roboto', sans-serif;
  --font-inter: 'Inter', sans-serif;
  --font-fallback: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Fallback font settings for better cross-browser compatibility */
body {
  font-family: var(--font-quicksand), var(--font-fallback);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading), var(--font-fallback);
}

/* Additional typography utilities */
.text-roboto {
  font-family: var(--font-roboto);
}

.text-inter {
  font-family: var(--font-inter);
}

.text-quicksand {
  font-family: var(--font-quicksand);
}

.text-outfit {
  font-family: var(--font-heading);
}

/* Font weight utilities */
.font-light {
  font-weight: 300;
}

.font-normal {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

/* Font size utilities */
.text-xs {
  font-size: 12px;
}

.text-sm {
  font-size: 14px;
}

.text-base {
  font-size: 16px;
}

.text-lg {
  font-size: 18px;
}

.text-xl {
  font-size: 20px;
}

.text-2xl {
  font-size: 24px;
}

.text-3xl {
  font-size: 30px;
}

.text-4xl {
  font-size: 36px;
}

.text-5xl {
  font-size: 48px;
} 