How do I change the font of the text in this checkout window?

I want to change the fonts of the items highlighted here. Website: dayoff.shop

Hello, @selinadg

Welcome to the Shopify Community.

Please Go to Online Store → Themes → Edit code → Assets → theme.scss.liquid and paste this code at the end of this file.

/* for Just added to your cart fonts*/
#CartPopupHeading {
font-size: 16px;
} 
/* set whatever properties you want to set */
/* for product title fonts*/
.cart-popup-item__title {
font-size: 18px;
}

@selinadg

Please add the following code at the bottom of your assets/theme.css file.

.cart-popup #CartPopupHeading{
font-family: "Your font name here" !important;
}
.cart-popup cart-popup-item__title{
font-family: "Your font name here" !important;
}

Hope this helps.

Thanks!

@Hardik29418 thanks this worked!