custom.css not loading

I have a custom.css file in the assets dir where also app.css is.
it is not loaded if I add the following to my root.html:

<link phx-track-static rel="stylesheet" href={Routes.static_path(@conn, "/assets/custom.css")}/>

but if I add

@import “./custom.css”;

to my app.css then it is loaded. why?