Disable Roboto Google font in Comparison Set
By default, the Comparison Sets plugin will pull in the Roboto font from the Google Fonts service.
If you don't wish to use the Roboto font in your Comparison Sets, you simply need to add the following code to your Custom Code Plugin:
add_action( 'wp_enqueue_scripts', function () { wp_dequeue_style( 'dfrcs_google_fonts' ); }, 99999999 );
That's it! Now the Roboto font will no longer be loaded on your site.