app/assets/stylesheets/shared/typography.scss
// TODO check in css so tests can run without internet
@use "../base/variables.scss" as globals;
@import url(https://fonts.googleapis.com/css?family=Montserrat:400,700);
body {
font-family: "Montserrat";
}
option {
font-family: Helvetica, Arial, sans-serif;
}
.content-1 {
font-family: Inter;
font-size: 16px;
font-weight: 500;
line-height: 19px;
color: var(--dark);
}
.content-2 {
font-family: Inter;
font-size: 14px;
font-weight: 500;
line-height: 22px;
color: var(--gray)
}
.content-3 {
font-family: Inter;
font-size: 14px;
font-weight: 400;
}
.pre-line {
white-space: pre-line;
}