<?xml version='1.0'?>
<!DOCTYPE fontconfig SYSTEM 'fonts.dtd'>
<fontconfig>
 <match target="pattern">
     <test name="family">
         <string>Nimbus Roman No9 L</string>
     </test>
     <!-- Use regular instead. Append after matching is complete. -->
     <edit name="weight" mode="append">
         <const>regular</const>
     </edit>
 </match>
 <match target="pattern">
     <test name="family">
         <string>Nimbus Roman No9 L</string>
     </test>
     <!--Test if the requested font is medium or more-->
     <test name="weight" compare="more_eq">
         <const>medium</const>
     </test>
     <edit name="weight" mode="assign">
         <const>medium</const>
     </edit>
 </match>
</fontconfig>
