/* Inter as default, Manrope as fallback */
* {
  font-family: 'Inter', 'Manrope', sans-serif;
}

body, html {
  font-family: 'Inter', 'Manrope', sans-serif;
}

/* Ensure all text elements use Inter (with Manrope fallback) */
h1, h2, h3, h4, h5, h6, p, span, div, a, button, input, textarea, select, label {
  font-family: 'Inter', 'Manrope', sans-serif;
}

/* Material-UI specific overrides */
.MuiTypography-root {
  font-family: 'Inter', 'Manrope', sans-serif !important;
}

.MuiButton-root {
  font-family: 'Inter', 'Manrope', sans-serif !important;
}

.MuiInputBase-root {
  font-family: 'Inter', 'Manrope', sans-serif !important;
}

/* Swagger UI overrides */
.swagger-ui * {
  font-family: 'Inter', 'Manrope', sans-serif !important;
}

/* GraphQL Explorer overrides */
.graphiql-explorer-root * {
  font-family: 'Inter', 'Manrope', sans-serif !important;
} 