@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&amp;family=Roboto+Slab:wght@300;400;700&amp;family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&amp;display=swap");
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,300;0,400;0,700;1,100;1,300;1,400;1,700&amp;display=swap');
:root {
  --font-normal: 'Roboto', sans-serif;
  --font-alt1: 'Roboto Condensed', sans-serif;
  --font-alt2: 'Roboto Slab', sans-serif;
  --font-alt3: 'Montserrat', sans-serif;
}

body {
  font-size: 16px;
  line-height: 24px;
}

body, h1, h2, h3, h4, h5, h6, p {
  font-family: 'Roboto', sans-serif;
  color: var(--color-text-default);
}

.font-normal {
  font-family: 'Roboto', sans-serif;
}

.font-alt1 {
  font-family: 'Roboto Condensed', sans-serif;
}

.font-alt2 {
  font-family: 'Roboto Slab', sans-serif;
}

h1 {
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 30px;
}

.h-size-h1 {
  font-size: 48px;
}

h2, .h-size-h2 {
  font-size: 32px;
}

h3, .h-size-h3 {
  font-size: 28px;
}

h4, .h-size-h4 {
  font-size: 24px !important;
}

h5, label, .h-size-h5 {
  font-size: 20px;
}

label {
  font-weight: normal;
}

h6, .h-size-h6 {
  font-size: 18px;
}

.title {
  font-size: 27px;
  font-weight: bold;
}

p {
  font-size: 16px;
}

.h-size-p {
  font-size: 16px;
}

.h-font-size-small {
  font-size: 14px;
}

.h-font-size-xsmall {
  font-size: 12px;
}

.h-font-italic {
  font-style: italic;
}

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

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

.h-weight-light {
  font-weight: 200;
}

.h-text-left {
  text-align: left;
}

.h-text-center {
  text-align: center;
}

.h-text-right {
  text-align: right;
}

.h-strike {
  text-decoration: line-through;
}

.h-uppercase {
  text-transform: uppercase;
}

.h-lowercase {
  text-transform: lowercase;
}

.h-mixed-case {
  text-transform: none;
}

a.link-sold-out {
  text-decoration: underline;
  color: var(--color-theme-dark);
}
a.link-sold-out:hover {
  color: var(--color-text-light);
}

/*# sourceMappingURL=typography.css.map */