/* Google Fonts Configuration */

/* Define CSS variables for fonts */
:root {
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  --font-headings: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
}

/* Apply fonts to base elements */
body {
  font-family: var(--font-primary);
  font-feature-settings: 'kern' 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Apply Poppins to headings */
h1, h2, h3, h4, h5, h6,
.font-heading {
  font-family: var(--font-headings);
}

/* 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-extrabold { font-weight: 800; }
.font-black { font-weight: 900; }

/* Specific typography classes */
.text-primary {
  font-family: var(--font-primary);
}

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

/* Brand/Logo typography */
.anab-brand {
  font-family: var(--font-headings);
  font-weight: 700;
  letter-spacing: -0.025em;
}

/* Form labels and inputs */
label,
.form-label {
  font-family: var(--font-primary);
  font-weight: 500;
}

input, textarea, select {
  font-family: var(--font-primary);
}

/* Button typography */
.du-btn, button {
  font-family: var(--font-primary);
  font-weight: 500;
}

/* Navigation typography */
.navbar-text {
  font-family: var(--font-primary);
  font-weight: 500;
}

/* Card titles */
.card-title {
  font-family: var(--font-headings);
  font-weight: 600;
}