@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&family=Syne:wght@300;400&display=swap");

:root {
  --font-sans: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Syne", "Gill Sans", "Helvetica Neue", sans-serif;
  --font-size-base: 16px;
  --font-line-height-base: 1.6;
  --heading-line-height: 1.25;
  --font-letter-spacing: 0.01em;
  --heading-letter-spacing: 0.015em;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-heading: 400;
}

html {
  font-size: var(--font-size-base);
}

body {
  font-family: var(--font-sans);
  font-weight: var(--font-weight-light);
  line-height: var(--font-line-height-base);
  letter-spacing: var(--font-letter-spacing);
  color: var(--gs-text-primary, var(--color-brand-primary));
  background-color: var(--gs-background, var(--color-surface-base));
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: var(--font-weight-heading);
  line-height: var(--heading-line-height);
  letter-spacing: var(--heading-letter-spacing);
  color: var(--gs-text-primary, var(--color-brand-primary));
  margin-top: 0;
}

p,
span,
li,
blockquote,
figcaption,
label,
input,
textarea,
button {
  font-family: var(--font-sans);
  font-weight: var(--font-weight-light);
  letter-spacing: var(--font-letter-spacing);
}

small {
  font-weight: var(--font-weight-light);
  letter-spacing: 0.05em;
}

strong,
b {
  font-weight: var(--font-weight-medium);
}

em,
i {
  font-family: var(--font-display);
  font-weight: var(--font-weight-heading);
}

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

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

.weight-light {
  font-weight: var(--font-weight-light);
}

.weight-regular {
  font-weight: var(--font-weight-regular);
}

.weight-medium {
  font-weight: var(--font-weight-medium);
}

.weight-semibold {
  font-weight: var(--font-weight-semibold);
}

.weight-bold {
  font-weight: var(--font-weight-bold);
}
