mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-25 10:10:08 +02:00
* Add font Inter Files downloaded from https://rsms.me/inter/ Kept only the woff2 files and CSS definitions for Inter-Regular and Inter-SemiBold * Delete inter folder * Add inter to build-fonts.mjs and run it * Add inter.css * Update latofonts archive URL GitOrigin-RevId: 24cd8a48f4566d8a55443eb2cd938ee129dff5f8
15 lines
309 B
CSS
15 lines
309 B
CSS
@font-face {
|
|
font-family: 'Inter';
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
font-display: swap;
|
|
src: url('Inter-Regular.woff2') format('woff2');
|
|
}
|
|
@font-face {
|
|
font-family: 'Inter';
|
|
font-style: normal;
|
|
font-weight: 600;
|
|
font-display: swap;
|
|
src: url('Inter-SemiBold.woff2') format('woff2');
|
|
}
|