Install google fonts locally on your linux computer

cd /opt
git clone git@github.com:google/fonts.git googlefonts
vim /etc/fonts/local.conf
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<!-- /etc/fonts/fonts.conf file to configure system font access -->
<fontconfig>
	<dir>/opt/googlefonts</dir>
</fontconfig>
fc-list
/opt/googlefonts/ofl/rosario/Rosario-Italic.ttf: Rosario:style=Italic
/opt/googlefonts/apache/robotomono/RobotoMono-BoldItalic.ttf: Roboto
Mono:style=Bold Italic
/opt/googlefonts/ofl/imfelldoublepicasc/IMFeDPsc28P.ttf: IM FELL Double Pica
SC:style=Regular
/usr/share/fonts/truetype/kacst/KacstOffice.ttf: KacstOffice:style=Medium
/opt/googlefonts/ofl/rhodiumlibre/RhodiumLibre-Regular.ttf: Rhodium
Libre:style=Regular
/usr/share/fonts/type1/gsfonts/n019003l.pfb: Nimbus Sans L:style=Regular
/opt/googlefonts/apache/robotomono/RobotoMono-Medium.ttf: Roboto Mono,Roboto
Mono Medium:style=Medium,Regular
/opt/googlefonts/ofl/almendra/Almendra-Italic.ttf: Almendra:style=Italic
/opt/googlefonts/ofl/worksans/WorkSans-SemiBold.ttf: Work Sans,Work Sans
SemiBold:style=SemiBold,Regular
/opt/googlefonts/ofl/squadaone/SquadaOne-Regular.ttf: Squada One:style=Regular
/opt/googlefonts/ofl/textmeone/TextMeOne-Regular.ttf: Text Me
One:style=Regular
/opt/googlefonts/ofl/patrickhand/PatrickHand-Regular.ttf: Patrick
Hand:style=Regular
/opt/googlefonts/ofl/signikanegative/SignikaNegative-Regular.ttf: Signika
Negative:style=Regular
/opt/googlefonts/ofl/cabin/Cabin-SemiBold.ttf: Cabin:style=SemiBold
/opt/googlefonts/ofl/quattrocentosans/QuattrocentoSans-Bold.ttf: Quattrocento
Sans:style=Bold
/opt/googlefonts/ofl/share/Share-Regular.ttf: Share:style=Regular
/opt/googlefonts/ofl/martel/Martel-UltraLight.ttf: Martel,Martel
UltraLight:style=UltraLight,Regular

Add texlive fonts

vim /etc/fonts/local.conf
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<!-- /etc/fonts/fonts.conf file to configure system font access -->
<fontconfig>
	<dir>/usr/local/texlive/texmf-dist/fonts</dir>
</fontconfig>