Почему не подключается формат шрифта скаченный на пк.
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header id="top">
<div id="main">ГЛАВНАЯ</div>
<div id="service">УСЛУГИ</div>
<div id="works">РАБОТЫ</div>
<div id="about">О НАС</div>
<div id="contact">КОНТАКТЫ</div>
</header>
</body>
</html>
@font-face {
font-family: 'Fascinate Inline';
src: url(fonts/FascinateInline-Regular.woff2) format(woff2);
font-weight: 400;
font-style: normal;
}
#top {
width: 100%;
height: 10%;
background-color: #779CAB;
margin: 0px;
padding: 1%;
display: flex;
flex-direction: row;
justify-content: center;
}
div {
margin: 10px;
font-family: "Fascinate Inline", system-ui;
font-weight: 400;
font-style: normal;
}