몰랐던 사실 하나.. 구글 웹폰트에서 제공하는 폰트는 무료로 다운받을 수 있다.
https://fonts.google.com/specimen/Libre+Baskerville?query=Libre+Baskerville#standard-styles
사진 오른쪽 위 download family에서 font를 다운받을 수 있다.
import styled from "@emotion/styled";
그리고 styled를 가져온 페이지에..
export const HeaderNu = styled.div`
/* height: 100px; */
font-family: "Libre Baskerville", serif;
font-size: 30px;
color: pink;
font-weight: bold;
margin-left: 0px;
padding-top: 31px;
`;
font-family: "폰트 이름"
을 적으면 끝!