26 lines
756 B
CSS
26 lines
756 B
CSS
/* Proxima Nova — localized paths */
|
|
|
|
@font-face {
|
|
font-family: 'proxima_nova_ltlight';
|
|
src: url('/assets/fonts/proxima-light.woff2') format('woff2'),
|
|
url('/assets/fonts/proxima-light.woff') format('woff');
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'proxima_nova_rgbold';
|
|
src: url('/assets/fonts/proxima-bold.woff2') format('woff2'),
|
|
url('/assets/fonts/proxima-bold.woff') format('woff');
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'proxima_nova_rgregular';
|
|
src: url('/assets/fonts/proxima-regular.woff2') format('woff2'),
|
|
url('/assets/fonts/proxima-regular.woff') format('woff');
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
}
|