/* Import Inter font family from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');

/* Apply Inter Regular (400 weight) */
body {
  font-family: 'Inter', sans-serif;
  font-weight: 400; /* Normal weight */
}

/* Apply Inter Bold (700 weight) */
h1, h2, h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700; /* Bold weight */
}

/* Example of using specific weights */
.regular-text {
  font-family: 'Inter', sans-serif;
  font-weight: 400; /* or 'normal' */
}

.bold-text {
  font-family: 'Inter', sans-serif;
  font-weight: 700; /* or 'bold' */
}


/* For other weights (e.g., 500, 600, 800, etc.) you need to include them in the import URL */
/* Example:  For 500 (medium) and 800 (extra bold) */
/* @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700;800&display=swap'); */

/* Then you can use font-weight: 500; and font-weight: 800; in your CSS */
