“opensans” font is the default font adopted by Magento.
So if you need to remove default preloaded “opensans” fonts then you can follow the below instructions.
1. You need to add the below code in between <head> tag on your theme/Magento_Theme/layout/default.xml
<head> <remove src="fonts/opensans/light/opensans-300.woff2"/> <remove src="fonts/opensans/regular/opensans-400.woff2"/> <remove src="fonts/opensans/semibold/opensans-600.woff2"/> <remove src="fonts/opensans/bold/opensans-700.woff2"/> </head>
Note: I have tested it in Magento Version: 2.3.5

